rsc.io/qr.bitWriter.writeBits (method)
11 uses
rsc.io/qr (current package)
png.go#L105: b.writeBits(1, 1, false) // final block
png.go#L106: b.writeBits(1, 2, false) // compressed, fixed Huffman tables
png.go#L187: func (b *bitWriter) writeBits(bit uint32, nbit uint, rev bool) {
png.go#L228: b.writeBits(uint32(v)+0x30, 8, true)
png.go#L230: b.writeBits(uint32(v-144)+0x190, 9, true)
png.go#L232: b.writeBits(uint32(v-256)+0, 7, true)
png.go#L234: b.writeBits(uint32(v-280)+0xc0, 8, true)
png.go#L246: b.writeBits(uint32(val)&(1<<nx-1), nx, false)
png.go#L316: b.writeBits(uint32(d-1), 5, true)
png.go#L327: b.writeBits(code, 5, true)
png.go#L329: b.writeBits(uint32(v), nbit-2, false)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |